Skip to content

Applies to

netstandard2.0

public QueryablePlan<TResult> Then<TResult>(Expression<Func<TSource1, TSource2, TResult>> selector)

Summary: Matches when all observable sequences have an available element and projects the elements by invoking the selector function.

Type parameters

NameDescription
TResultThe type of the elements in the result sequence, returned by the selector function.

Parameters

NameTypeDescription
selectorExpression>Selector that will be invoked for elements in the source sequences.

Returns: QueryablePlan -- Plan that produces the projected results, to be fed (with other plans) to the When operator.

Exceptions

TypeCondition
System.ArgumentNullExceptionselector is null.